home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / BBS / EZY120_1.ZIP / STRUCT.ARJ / CLIB.ARJ / DATE5.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-09  |  130 b   |  12 lines

  1.  
  2. #include <dos.h>
  3.  
  4. long TodayUnix()
  5. {
  6.   date d;
  7.   getdate(&d);
  8.   time t;
  9.   gettime(&t);
  10.   return(dostounix(&d, &t));
  11. }
  12.